Imports System.Console
	Public Class ColourTheConsole
		Shared Sub Main()
	
			BackgroundColor = ConsoleColor.Blue
			ForegroundColor = ConsoleColor.Yellow
		End Sub
	End Class


'Supproted Colours;
	'Black 
	'DarkBlue 
	'DarkGreen 
	'DarkCyan 
	'DarkRed 
	'DarkMagenta 
	'DarkYellow 
	'Gray 
	'DarkGray 
	'Blue 
	'Green 
	'Cyan 
	'Red 
	'Magenta 
	'Yellow 
	'White 
